home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------
- // FormProperties.cs ⌐ 2001 by Charles Petzold
- //---------------------------------------------
- using System.Drawing;
- using System.Windows.Forms;
-
- class FormProperties
- {
- public static void Main()
- {
- Form form = new Form();
-
- form.Text = "Propiedades del formulario";
- form.BackColor = Color.BlanchedAlmond;
- form.Width *= 2;
- form.Height /= 2;
- form.FormBorderStyle = FormBorderStyle.FixedSingle;
- form.MaximizeBox = false;
- form.Cursor = Cursors.Hand;
- form.StartPosition = FormStartPosition.CenterScreen;
-
- Application.Run(form);
- }
- }
-